home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 26 / Cream of the Crop 26.iso / program / vol16n12.zip / ICONED.ZIP / ICON_SRC.ZIP / ICONTEST.PAS < prev    next >
Pascal/Delphi Source File  |  1997-05-28  |  782b  |  42 lines

  1. unit IconTest;
  2.  
  3. interface
  4.  
  5. uses
  6.   Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
  7.   ExtCtrls, ColorGrd, StdCtrls;
  8.  
  9. type
  10.   TIconTestForm = class(TForm)
  11.     TestImage: TImage;
  12.     Panel1: TPanel;
  13.     ColorGrid1: TColorGrid;
  14.     Label1: TLabel;
  15.     Button1: TButton;
  16.     procedure ColorGrid1Change(Sender: TObject);
  17.     procedure FormActivate(Sender: TObject);
  18.   private
  19.     { Private declarations }
  20.   public
  21.     { Public declarations }
  22.   end;
  23.  
  24. var
  25.   IconTestForm: TIconTestForm;
  26.  
  27. implementation
  28.  
  29. {$R *.DFM}
  30.  
  31. procedure TIconTestForm.ColorGrid1Change(Sender: TObject);
  32. begin
  33.   Color:= ColorGrid1.ForegroundColor;
  34. end;
  35.  
  36. procedure TIconTestForm.FormActivate(Sender: TObject);
  37. begin
  38.   ColorGrid1Change(Sender);
  39. end;
  40.  
  41. end.
  42.